/* Style Login.css */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #f4f4f4;
    min-height: 60vh;
}

.login-card {
    background-color: #fff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 26px;
    color: #111;
    margin: 0 0 5px 0;
}

.login-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
}

.forgot-password {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 15px;
    background-color: #ffcc00;
    color: #111;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-login:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #555;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.login-footer a {
    color: #111;
    font-weight: bold;
    text-decoration: none;
}

.login-footer a:hover {
    color: #ffcc00;
}